home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / tex / dvipdfm.lha / dvipdfm / dvi.h < prev    next >
C/C++ Source or Header  |  2000-10-20  |  2KB  |  68 lines

  1. /*  $Header$
  2.  
  3.     This is dvipdfm, a DVI to PDF translator.
  4.     Copyright (C) 1998, 1999 by Mark A. Wicks
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation; either version 2 of the License, or
  9.     (at your option) any later version.
  10.  
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU General Public License for more details.
  15.  
  16.     You should have received a copy of the GNU General Public License
  17.     along with this program; if not, write to the Free Software
  18.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.     
  20.     The author may be contacted via the e-mail address
  21.  
  22.     mwicks@kettering.edu
  23. */
  24.  
  25. #ifndef _DVI_H_
  26. #define _DVI_H_    
  27.  
  28. #include "error.h"
  29. #include "numbers.h"
  30. #include "pdfdev.h"
  31.  
  32. extern error_t dvi_init (char *dvi_filename, char *pdf_filename, double mag, double x_offset,
  33.              double y_offset);
  34.  
  35. extern void dvi_set_verbose (void);
  36. extern void dvi_set_debug (void);
  37.  
  38. extern void dvi_close (void);  /* Closes data structures created by dvi_open */
  39. extern double dvi_tell_mag (void);
  40. extern double dvi_unit_size (void);
  41.  
  42. extern void dvi_vf_init (int dev_font_id);
  43. extern void dvi_vf_finish (void);
  44.  
  45. extern void dvi_set_font (int font_id);
  46. extern void dvi_set (SIGNED_QUAD ch);
  47. extern void dvi_rule (SIGNED_QUAD width, SIGNED_QUAD height);
  48. extern void dvi_right (SIGNED_QUAD x);
  49. extern void dvi_put (SIGNED_QUAD ch);
  50. extern void dvi_push (void);
  51. extern void dvi_pop (void);
  52. extern void dvi_w0 (void);
  53. extern void dvi_w (SIGNED_QUAD ch);
  54. extern void dvi_x0(void);
  55. extern void dvi_x (SIGNED_QUAD ch);
  56. extern void dvi_down (SIGNED_QUAD y);
  57. extern void dvi_y (SIGNED_QUAD ch);
  58. extern void dvi_y0(void);
  59. extern void dvi_z (SIGNED_QUAD ch);
  60. extern void dvi_z0(void);
  61. extern double dvi_dev_xpos(void);
  62. extern double dvi_dev_ypos(void);
  63. extern unsigned dvi_npages (void);
  64. extern void dvi_do_page(unsigned n);
  65. extern int dvi_locate_font (char *name, spt_t ptsize);
  66. extern void dvi_compute_boxes (unsigned char boxes);
  67. #endif /* _DVI_H_ */
  68.